home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / dev / cross / avra-0.4_src.lha / avra-0.4 / device.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-03-24  |  2.1 KB  |  63 lines

  1. /***********************************************************************
  2.  *  avra - Assembler for the Atmel AVR microcontroller series
  3.  *  Copyright (C) 1998-1999 Jon Anders Haugum
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  18.  *  Boston, MA 02111-1307, USA.
  19.  *
  20.  *
  21.  *  Author of avra can be reached at:
  22.  *     email: jonah@omegav.ntnu.no
  23.  *     www: http://www.omegav.ntnu.no/~jonah/el/avra.html
  24.  */
  25.  
  26. #include "misc.h"
  27. #include "avra.h"
  28. #include "device.h"
  29.  
  30. struct device device_list[] =
  31.     {
  32.     {       NULL, 4194304, 8388608, 65536, 0},
  33.     {"AT90S1200",     512,       0,    64, DF_NO_MUL},
  34.     {"AT90S2313",    1024,     128,   128, DF_NO_MUL},
  35.     {"AT90S2323",    1024,     128,   128, DF_NO_MUL},
  36.     {"AT90S2333",    1024,     128,   128, DF_NO_MUL},
  37.     {"AT90S2343",    1024,     128,   128, DF_NO_MUL},
  38.     {"AT90S4414",    2048,     256,   256, DF_NO_MUL},
  39.     {"AT90S4433",    2048,     128,   128, DF_NO_MUL},
  40.     {"AT90S4434",    2048,     256,   256, DF_NO_MUL},
  41.     {"AT90S8515",    4096,     512,   512, DF_NO_MUL},
  42.     {"AT90S8535",    4096,     512,   512, DF_NO_MUL},
  43.     {"ATmega603",   32768,    4096,  2048, DF_NO_MUL},
  44.     {"ATmega103",   65536,    4096,  4096, DF_NO_MUL},
  45.     {NULL, 0, 0, 0, 0}
  46.     };
  47.  
  48.  
  49. struct device *get_device(char *name)
  50.     {
  51.     int i = 1;
  52.  
  53.     if(name == NULL)
  54.         return(&device_list[0]);
  55.     while(device_list[i].name)
  56.         {
  57.         if(!nocase_strcmp(name, device_list[i].name))
  58.             return(&device_list[i]);
  59.         i++;
  60.         }
  61.     return(NULL);
  62.     }
  63.